home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1997 August / Walnut Creek CDROM.7z / VOL_400 / 446_01 / DOC / SPLINES / EX / PROG2.C < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-18  |  391 b   |  17 lines

  1. // ******************** File: prog2.C *********************
  2. // A program that demonstrates the use of SplineSpace
  3. #include <SplineSpace.h>
  4. int main()
  5. {
  6.   KnotVec knots(5);
  7.   knots.fill(1,5);  // the knots becomes 1 2 3 4 5
  8.   knots.regulate(4);
  9.  
  10.   SplineSpace space1(knots,4);
  11.   space1.print(s_o); s_o << "\n";
  12.  
  13.   SplineSpace space2;  space2.redim(space1);
  14.   space2.print(s_o);
  15.   return 0;
  16. }
  17.